home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / sspell14.zip / MAKEFILE.UNX < prev    next >
Text File  |  1992-07-06  |  712b  |  35 lines

  1. all: sspell
  2.  
  3. # flags = -gx
  4.  
  5. cc = cc
  6.  
  7. .c.o:
  8.     $(cc) $(flags) -c $<
  9.  
  10. cache.o: cache.c cache.h strfn.h
  11.  
  12. cfgload.o: cfgload.c strfn.h config.h stop.h
  13.  
  14. stop.o: stop.c config.h error.h stop.h
  15.  
  16. dos.o: dos.c
  17.  
  18. sspell.o: sspell.c strfn.h cache.h file.h config.h
  19.  
  20. file.o: file.h file.c config.h
  21.  
  22. check.o: check.h check.h config.h
  23.  
  24. root.o: root.c root.h
  25.  
  26. utility.o: utility.c utility.h
  27.  
  28. sspell: cache.o cfgload.o file.o sspell.o check.o root.o string.o utility.o dos.o stop.o
  29.     $(cc) -o sspell $(flags) sspell.o cache.o cfgload.o file.o check.o root.o string.o utility.o dos.o stop.o
  30.  
  31. clean:
  32.     rm cache.o cfgload.o file.o sspell.o check.o root.o string.o utility.o dos.o
  33.     rm stop.o
  34.     rm sspell
  35.